home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / muds / lpmud312.tar / lpmud312 / INSTALL < prev    next >
Text File  |  1991-11-16  |  1KB  |  29 lines

  1. This is a brief description of how to install LPmud 3.0:
  2.  
  3. Make a directory 'mud', which contains a dir named 'src', 'bin' and 'lib'.
  4. Move the game driver source (this code) to the src directory.
  5.  
  6. Edit the Makefile, defining where the lib and bin is. Check definitions
  7. in config.h, most are probably good as they are. The important one is
  8. COMPAT_MODE in config.h. It must be defined to be able to use the 2.4.5 mudlib
  9. or older.
  10.  
  11. Do 'make install' and 'make install.utils'.
  12.  
  13. Get a mudlib. The way to do this is to get the source to 2.4.5, which includes
  14. a mudlib in the directory 'mudlib'. Copy all those files into your 'lib'
  15. directory.
  16.  
  17. Copy the file src/master.c to lib/obj/master.c (in COMPAT_MODE), otherwise
  18. to lib/secure/master.c. Copy the file src/mudlib_simul_efun.c to where
  19. it is supposed to be. That is defined by the function get_simul_efun in
  20. master.c. You will need it only if you still want the "old" and out-of-date
  21. efuns like ls() etc.
  22.  
  23. Test the game with 'driver -o &'.
  24.  
  25. If you see the message 'Setting up ipc', then you are up and running.
  26. Test with 'telnet localhost 3000'.
  27.  
  28. If you want the game to restart automatically, use 'bin/restart_mud'.
  29.